home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Shareware World / Comms & Internet / Anarchie Pro 3.0 / Scripting / AppleScripts / DropPut Example 1 < prev    next >
Text File  |  1998-08-28  |  235b  |  13 lines

  1. property whereto : "ftp://user:pasword@host/path/"
  2.  
  3. on open doc
  4.     if doc's class is not list then
  5.         set doc to {doc}
  6.     end if
  7.     repeat with i in doc
  8.         tell application "Anarchie Pro"
  9.             store i url whereto
  10.         end tell
  11.     end repeat
  12. end open
  13.